Added dev script for ts-node

This commit is contained in:
2023-12-30 00:03:32 +01:00
parent 7d7b44412e
commit efa45e7db9
12 changed files with 89 additions and 59 deletions

17
src/typings/Types.ts Normal file
View File

@@ -0,0 +1,17 @@
export type Profile = {
data: {
id: string
name: string
}
}
export type Profile2 = {
data: {
id: string
name: string
properties: { name: string; value: string }[]
profileActions: []
}
}
export type FileType = "js" | "ts"