UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

15 lines (14 loc) 448 B
/// <reference types="react" /> declare const SpinSizes: ["small", "default", "large"]; export declare type SpinSizeType = typeof SpinSizes[number]; export declare type SpinIndicatorType = React.ReactElement<HTMLElement>; export interface SpinProps { className?: string; spinning?: boolean; style?: React.CSSProperties; size?: SpinSizeType; tip?: React.ReactNode; delay?: number; wrapperClassName?: string; } export {};