rewriting to oop and typescript

This commit is contained in:
2021-12-01 18:05:44 +01:00
parent 67d6029699
commit 1ebafbef49
123 changed files with 2129 additions and 5 deletions

View File

@@ -0,0 +1,3 @@
export interface Norkcfg {
lang: string
}

View File

@@ -0,0 +1,15 @@
export interface Questions {
type: string
message: string
name: string
choices: [
{
name: string
value: string
},
{
name: string
value: string
},
]
}

4
src/interfaces/test.ts Normal file
View File

@@ -0,0 +1,4 @@
export interface interfaceName {
hello: string
world: boolean | null | undefined
}

View File

@@ -0,0 +1,4 @@
export interface interfaceName {
hello: string
world: boolean | null | undefined
}