@doreamonjs/gate
Version:
gate for doreamonjs
20 lines (19 loc) • 461 B
TypeScript
export interface Props {
loading?: boolean;
visible?: boolean;
log?: string;
sse?: string;
sseOptions?: {
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
headers?: Record<string, string>;
body?: any;
};
downloadURL?: string;
downloadFilename?: string;
downloadBtnText?: string;
onClose?(): void;
width?: number;
title?: string;
}
declare const _default: any;
export default _default;