UNPKG

@solid/community-server

Version:

Community Solid Server: an open and modular implementation of the Solid specifications

9 lines (8 loc) 200 B
/** * Describes the size of something by stating how much of a certain unit is present. */ export interface Size { unit: string; amount: number; } export declare const UNIT_BYTES = "bytes";