(name: string)
| 116 | > |
| 117 | |
| 118 | export function validateDirectiveName(name: string): void { |
| 119 | if (isBuiltInDirective(name)) { |
| 120 | warn('Do not use built-in directive ids as custom directive id: ' + name) |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | // Directive, value, argument, modifiers |
| 125 | export type DirectiveArguments = Array< |
no test coverage detected