Files
novarix.uk/node_modules/@next/eslint-plugin-next/dist/utils/node-attributes.d.ts
T
Kismet Hasanaj 39a8a128be including-modules
2026-05-03 00:14:08 +02:00

14 lines
326 B
TypeScript

export default class NodeAttributes {
attributes: Record<string, {
hasValue?: false;
} | {
hasValue: true;
value: any;
}>;
constructor(ASTnode: any);
hasAny(): boolean;
has(attrName: string): boolean;
hasValue(attrName: string): boolean;
value(attrName: string): any;
}