info.d.ts 703 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * @import {Info as InfoType} from 'property-information'
  3. */
  4. /** @type {InfoType} */
  5. export class Info {
  6. /**
  7. * @param {string} property
  8. * Property.
  9. * @param {string} attribute
  10. * Attribute.
  11. * @returns
  12. * Info.
  13. */
  14. constructor(property: string, attribute: string);
  15. attribute: string;
  16. property: string;
  17. booleanish: boolean;
  18. boolean: boolean;
  19. commaOrSpaceSeparated: boolean;
  20. commaSeparated: boolean;
  21. defined: boolean;
  22. mustUseProperty: boolean;
  23. number: boolean;
  24. overloadedBoolean: boolean;
  25. spaceSeparated: boolean;
  26. space: import("property-information").Space | undefined;
  27. }
  28. //# sourceMappingURL=info.d.ts.map