Initial commit: ACE-Step UI - Open source music generation interface

This commit is contained in:
fspecii
2026-02-04 03:09:38 +02:00
commit 44f7563014
187 changed files with 99985 additions and 0 deletions
Vendored
+36
View File
@@ -0,0 +1,36 @@
interface GoogleCredentialResponse {
credential: string;
select_by?: string;
}
interface GoogleAccountsId {
initialize: (options: {
client_id: string;
callback: (response: GoogleCredentialResponse) => void;
ux_mode?: 'popup' | 'redirect';
}) => void;
renderButton: (
parent: HTMLElement,
options?: {
theme?: 'outline' | 'filled_blue' | 'filled_black';
size?: 'large' | 'medium' | 'small';
type?: 'standard' | 'icon';
shape?: 'rectangular' | 'pill' | 'circle' | 'square';
text?: 'signin_with' | 'signup_with' | 'continue_with' | 'signin';
width?: number;
locale?: string;
}
) => void;
}
interface GoogleAccounts {
id: GoogleAccountsId;
}
interface GoogleGlobal {
accounts: GoogleAccounts;
}
interface Window {
google?: GoogleGlobal;
}