mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
export interface CloudflareProject {
|
|
id: string;
|
|
name: string;
|
|
subdomain?: string;
|
|
}
|
|
|
|
export interface CloudflareConnection {
|
|
accountId: string;
|
|
token: string;
|
|
projects?: CloudflareProject[];
|
|
}
|