astro-integration-pocketbase
Version:
An Astro integration to support developers working with astro-loader-pocketbase.
18 lines (17 loc) • 320 B
text/typescript
/**
* Options for the toolbar.
*/
export interface ToolbarOptions {
/**
* Whether a content loader is active.
*/
hasContentLoader: boolean;
/**
* Whether a realtime connection to PocketBase is active.
*/
realtime: boolean;
/**
* Base URL of the PocketBase instance.
*/
baseUrl: string;
}