mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
The [release notes](https://github.com/avajs/ava/releases/tag/v4.3.3) mention compatibility with Node 18.8.
10 lines
248 B
TypeScript
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;
|