mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
fec189f2f3
bundler: - Prevent stack overflow. (denoland/deno#9752) testing: - Bump version - Fix handling of paths on windows. testing_macros: - Bump version - Correctly ignore files.
15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
// Loaded from https://deno.land/x/cliffy@v0.18.0/command/types/number.ts
|
|
|
|
|
|
import { number } from "../../flags/types/number.ts";
|
|
import { Type } from "../type.ts";
|
|
import type { ITypeInfo } from "../types.ts";
|
|
|
|
/** Number type. */
|
|
export class NumberType extends Type<number> {
|
|
/** Parse number type. */
|
|
public parse(type: ITypeInfo): number {
|
|
return number(type);
|
|
}
|
|
}
|