Node-Red configuration
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.d.ts 315B

123456789101112
  1. declare function defineDataProperty(
  2. obj: Record<PropertyKey, unknown>,
  3. property: keyof typeof obj,
  4. value: typeof obj[typeof property],
  5. nonEnumerable?: boolean | null,
  6. nonWritable?: boolean | null,
  7. nonConfigurable?: boolean | null,
  8. loose?: boolean
  9. ): void;
  10. export = defineDataProperty;