| 57 | experimental?: any; |
| 58 | }; |
| 59 | interface BlockOptions { |
| 60 | contextVars?: string[]; |
| 61 | context?: string; |
| 62 | scopeVars?: ScopeVars; |
| 63 | childComponents?: string[]; |
| 64 | outputs?: string[]; |
| 65 | props?: Set<string>; |
| 66 | ComponentName?: string; |
| 67 | } |
| 68 | |
| 69 | const isAttribute = (key: string): boolean => { |
| 70 | return /-/.test(key); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…