props.d.ts 438 B

12345678910111213141516171819
  1. declare const _default: {
  2. status: {
  3. type: StringConstructor;
  4. value: "loading" | "active" | "expired" | "scanned";
  5. };
  6. locale: {
  7. type: ObjectConstructor;
  8. value: {
  9. expiredText?: string;
  10. refreshText?: string;
  11. scannedText?: string;
  12. };
  13. };
  14. statusRender: {
  15. type: BooleanConstructor;
  16. value: boolean;
  17. };
  18. };
  19. export default _default;