Initial commit: ACE-Step UI - Open source music generation interface
This commit is contained in:
Vendored
+36
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user