| 10 | export type MaybePromise<T> = T | Promise<T>; |
| 11 | |
| 12 | export interface AstType { |
| 13 | readonly $$mdtype: 'Function' | 'Node' | 'Variable'; |
| 14 | resolve(config: Config): any; |
| 15 | } |
| 16 | |
| 17 | export type AttributeValue = { |
| 18 | type: string; |
no outgoing calls
no test coverage detected
searching dependent graphs…