Fixed.d.ts 465 B

123456789101112
  1. import IFragment from './IFragment';
  2. declare type Bias = 'start' | 'end';
  3. export declare function fixed(value: number, bias: Bias, ...children: Array<string | IFragment>): Fixed;
  4. export declare class Fixed implements IFragment {
  5. private readonly width;
  6. private readonly bias;
  7. private readonly children;
  8. constructor(width: number, bias: Bias, children: Array<string | IFragment>);
  9. build(): string;
  10. }
  11. export {};
  12. //# sourceMappingURL=Fixed.d.ts.map