File size: 351 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* refer: https://github.com/mysticatea/eslint-plugin-node/blob/f45c6149be7235c0f7422d1179c25726afeecd83/lib/util/get-package-json.js
*/
import type { RuleContext } from '../types';
/**
* return true if it's a SvelteKit page component.
* @param context
* @returns
*/
export declare function isKitPageComponent(context: RuleContext): boolean;
|