export interface Snippet {
    id: string;
    language: string;
    code: string;
    description?: string;
    title?: string;
    rating?: number;
    views?: number;
    tags?: string[];
    slug?: string;
    type?: string;
    postedAt?: string;
}
export interface CodingCloudApiResponse {
    status: 'success' | 'error';
    message?: string;
    snippets: Snippet[];
    hasMore: boolean;
    total?: number;
    page?: number;
    limit?: number;
}
export interface CodingCloudRequestOptions {
}
