site/node_modules/property-information/lib/util/info.d.ts

24 lines
522 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
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
}