(method: string)
| 66 | } |
| 67 | |
| 68 | const warnRuntimeUsage = (method: string) => { |
| 69 | console.warn( |
| 70 | `${method}() is a compiler-hint helper that is only usable inside ` + |
| 71 | 'the script block of a single file component which is also a page. Its arguments should be ' + |
| 72 | 'compiled away and passing it at runtime has no effect.', |
| 73 | ) |
| 74 | } |
| 75 | |
| 76 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 77 | export const definePageMeta = (meta: PageMeta): void => { |
no outgoing calls
no test coverage detected
searching dependent graphs…