Replaced clang format with prettuier (sadly)

This commit is contained in:
2023-12-28 16:47:52 +01:00
parent ca5bbd0b81
commit 117140fe9d
99 changed files with 13519 additions and 12011 deletions

View File

@@ -1,15 +1,15 @@
export type Profile = {
data: {
id: string
name: string;
}
data: {
id: string
name: string
}
}
export type Profile2 = {
data: {
id: string,
name: string,
properties: { name: string, value: string }[],
profileActions: []
}
}
data: {
id: string
name: string
properties: { name: string; value: string }[]
profileActions: []
}
}

View File

@@ -1,6 +1,3 @@
import { Profile, Profile2 } from "./Profile"
export {
Profile,
Profile2
}
export { Profile, Profile2 }