UNPKG

intentful

Version:

Create Custom Skills with less headache

17 lines (16 loc) 591 B
import { ModelProvider } from '../../types'; export declare class Dimension implements ModelProvider<string> { private readonly value; private constructor(); model(): string; static expression(value: string): Dimension; static literal(value: string): Dimension; static number(value: number): Dimension; static dp(value: number): Dimension; static px(value: number): Dimension; static vh(value: number): Dimension; static vw(value: number): Dimension; static percent(value: number): Dimension; static auto(): Dimension; toJSON(): string; }