@translated/lara
Version:
Official Lara SDK for JavaScript and Node.js
17 lines (16 loc) • 409 B
TypeScript
import type { LaraClient } from "./net/lara";
export interface Styleguide {
id: string;
name: string;
content?: string;
ownerId: string;
createdAt: Date;
updatedAt: Date;
isPersonal: boolean;
}
export declare class Styleguides {
private readonly client;
constructor(client: LaraClient);
list(): Promise<Styleguide[]>;
get(id: string): Promise<Styleguide | null>;
}