This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/code-excerpt/dist/index.d.ts
T

10 lines
248 B
TypeScript

interface Options {
around?: number;
}
export interface CodeExcerpt {
line: number;
value: string;
}
declare const codeExcerpt: (source: string, line: number, options?: Options) => CodeExcerpt[] | undefined;
export default codeExcerpt;