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 { // eslint-disable-next-line @typescript-eslint/naming-convention _value: T; } }