chore(release): remove legados e fecha versao 2.0.0

This commit is contained in:
Felipe Coutinho
2026-03-09 17:15:04 +00:00
parent f724d8ac04
commit d92e70f1b9
26 changed files with 73 additions and 1848 deletions

View File

@@ -1,13 +0,0 @@
/**
* Standard action result type
*/
export type ActionResult<TData = void> =
| { success: true; message: string; data?: TData }
| { success: false; error: string };
/**
* Error result helper
*/
export function errorResult(error: string): ActionResult {
return { success: false, error };
}