@nasl/types
Version:
NASL types for TypeScript Declaration
15 lines (13 loc) • 400 B
TypeScript
declare namespace nasl.core {
export type Boolean = boolean;
export type Integer = number;
export type Decimal = number;
export type String = string;
export type Date = string;
export type Time = string;
export type DateTime = string;
export class StringLiteral<T> {
// eslint-disable-next-line @typescript-eslint/naming-convention
_value: T;
}
}