Files
IdP/apps/docs/lib/code-example.ts
2026-06-24 14:37:15 +03:00

7 lines
100 B
TypeScript

export interface CodeExample {
id: string;
label: string;
language: string;
code: string;
}