studiocms
Version:
Astro Native CMS for AstroDB. Built from the ground up by the Astro community.
18 lines (17 loc) • 359 B
TypeScript
/**
* Data for each OAuth provider button.
*/
export type ProviderData = {
enabled: boolean;
href: string;
label: string;
image: string;
};
/**
* Array of OAuth provider data for rendering buttons.
*/
export declare const providerData: ProviderData[];
/**
* Whether to show any OAuth buttons.
*/
export declare const showOAuth: boolean;