2
0
mirror of https://github.com/cderche/greenlock-storage-s3 synced 2025-07-01 21:56:31 +00:00
2019-05-08 12:19:12 +01:00

9 lines
140 B
TypeScript

export class NumberValue {
constructor(value: string|number);
toJSON(): number;
toNumber(): number;
toString(): string;
}