(name: string, compileFn: CompileFn<'static'>)
| 106 | private completions = new Map<string, () => SuggestionGroup[]>() |
| 107 | |
| 108 | static(name: string, compileFn: CompileFn<'static'>) { |
| 109 | this.utilities.get(name).push({ kind: 'static', compileFn }) |
| 110 | } |
| 111 | |
| 112 | functional(name: string, compileFn: CompileFn<'functional'>, options?: UtilityOptions) { |
| 113 | this.utilities.get(name).push({ kind: 'functional', compileFn, options }) |
no test coverage detected