Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

24 lines
577 B
TypeScript

export class Info {
/**
* @constructor
* @param {string} property
* @param {string} attribute
*/
constructor(property: string, attribute: string);
/** @type {string} */
property: string;
/** @type {string} */
attribute: string;
/** @type {string|null} */
space: string | null;
boolean: boolean;
booleanish: boolean;
overloadedBoolean: boolean;
number: boolean;
commaSeparated: boolean;
spaceSeparated: boolean;
commaOrSpaceSeparated: boolean;
mustUseProperty: boolean;
defined: boolean;
}