This commit is contained in:
2026-03-09 14:35:16 +00:00
parent 3a131cb30c
commit 8491c52639
13 changed files with 132 additions and 15 deletions
+11 -1
View File
@@ -169,9 +169,15 @@ export type ServiceScriptObject = {
work_dir?: string;
};
export type PagePropsType = {};
export type URLQueryType = {};
export type PagePropsType = {
config?: TCIGlobalConfig | null;
query?: URLQueryType | null;
user: User;
pageUrl?: string | null;
};
export type APIReqObject = {
username?: string;
email?: string;
@@ -201,3 +207,7 @@ export type TurboCISignupFormObject = {
password?: string;
confirmed_password?: string;
};
export type TurboCIAdminAppContextType = {
pageProps: PagePropsType;
};