10 lines
231 B
TypeScript
Executable File
10 lines
231 B
TypeScript
Executable File
export * from './auth';
|
|
export * from './public';
|
|
export * from './status';
|
|
export * from './storage';
|
|
export * from './useFileUpload';
|
|
|
|
export type Result<T> =
|
|
| { success: true; data: T }
|
|
| { success: false; error: string };
|