mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
|
// google.d.ts
|
||
|
interface GsiButtonConfiguration {
|
||
|
type: "standard" | "icon";
|
||
|
theme?: "outline" | "filled_blue" | "filled_black";
|
||
|
size?: "large" | "medium" | "small";
|
||
|
text?: "signin_with" | "signup_with" | "continue_with" | "signup_with";
|
||
|
shape?: "rectangular" | "pill" | "circle" | "square";
|
||
|
logo_alignment?: "left" | "center";
|
||
|
width?: number;
|
||
|
local?: string;
|
||
|
}
|