Updates
This commit is contained in:
+11
-1
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user