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.

12 lines (11 loc) 295 B
/// <reference types="react" /> export interface UnitNumberProps { value: string | number; offset?: number; current?: boolean; } export interface SingleNumberProps { value: string; count: number; } export default function SingleNumber(props: SingleNumberProps): JSX.Element;