mirror of
https://github.com/cderche/greenlock-storage-s3
synced 2025-07-01 21:56:31 +00:00
9 lines
140 B
TypeScript
9 lines
140 B
TypeScript
export class NumberValue {
|
|
constructor(value: string|number);
|
|
|
|
toJSON(): number;
|
|
|
|
toNumber(): number;
|
|
|
|
toString(): string;
|
|
} |