mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
export enum MonacoTheme {
|
|
GitHubLightDefault = "github-light-default",
|
|
GitHubDarkDefault = "github-dark-default",
|
|
}
|
|
|
|
export type MonacoThemeMetadata = {
|
|
id: MonacoTheme;
|
|
label: string;
|
|
};
|