Preview:```ts
const logLevels = ['error', 'warn', 'info', 'debug'] as const;
export type LogLevel = (typeof logLevels)[number];
declare function getLogLevelFromEnvironmentVariable(): LogLevel; // will this implementation require a type predicate or type assertion? e.g.:
...```
You can choose specific lines to embed by selecting them before copying the link.