2022-11-19 14:21:26 +00:00
|
|
|
export * from "./users";
|
|
|
|
export * from "./workspace";
|
2022-12-16 16:20:09 +00:00
|
|
|
export * from "./cycles";
|
2022-11-19 14:21:26 +00:00
|
|
|
export * from "./projects";
|
|
|
|
export * from "./state";
|
|
|
|
export * from "./invitation";
|
|
|
|
export * from "./issues";
|
2022-12-16 16:20:09 +00:00
|
|
|
export * from "./modules";
|
2023-03-15 05:30:05 +00:00
|
|
|
export * from "./views";
|
2023-03-23 17:57:11 +00:00
|
|
|
export * from "./integration";
|
2023-03-23 05:31:06 +00:00
|
|
|
export * from "./pages";
|
2023-03-28 18:50:00 +00:00
|
|
|
export * from "./ai";
|
2023-05-10 20:57:14 +00:00
|
|
|
export * from "./estimate";
|
2023-04-05 19:21:15 +00:00
|
|
|
export * from "./importer";
|
2023-06-16 13:27:17 +00:00
|
|
|
export * from "./inbox";
|
2023-05-11 12:08:46 +00:00
|
|
|
export * from "./analytics";
|
2023-05-10 20:57:14 +00:00
|
|
|
export * from "./calendar";
|
2023-07-18 06:37:55 +00:00
|
|
|
export * from "./notifications";
|
2023-07-11 10:57:29 +00:00
|
|
|
export * from "./waitlist";
|
2023-07-27 13:25:03 +00:00
|
|
|
export * from "./reaction";
|
2023-09-12 16:57:15 +00:00
|
|
|
export * from "./view-props";
|
2022-11-19 14:21:26 +00:00
|
|
|
|
|
|
|
export type NestedKeyOf<ObjectType extends object> = {
|
|
|
|
[Key in keyof ObjectType & (string | number)]: ObjectType[Key] extends object
|
|
|
|
? ObjectType[Key] extends { pop: any; push: any }
|
|
|
|
? `${Key}`
|
|
|
|
: `${Key}` | `${Key}.${NestedKeyOf<ObjectType[Key]>}`
|
|
|
|
: `${Key}`;
|
|
|
|
}[keyof ObjectType & (string | number)];
|