property.d.ts 590 B

123456789101112131415161718192021
  1. export var Property: any;
  2. export namespace Property {
  3. export type definition = {
  4. /**
  5. * A unique string that identifies the property.
  6. */
  7. id?: string | undefined;
  8. /**
  9. * A distinctive and human-readable name of the property.
  10. */
  11. name?: string | undefined;
  12. /**
  13. * Denotes whether the property is disabled or not.
  14. */
  15. disabled?: boolean | undefined;
  16. /**
  17. * The meta information regarding the Property is provided as the `info` object.
  18. */
  19. info?: any;
  20. };
  21. }