mirror of
https://github.com/github/codeql-action.git
synced 2026-01-02 04:30:14 +08:00
5 lines
286 B
TypeScript
5 lines
286 B
TypeScript
import { Version6Options } from './types.js';
|
|
declare function v6(options?: Version6Options, buf?: undefined, offset?: number): string;
|
|
declare function v6<TBuf extends Uint8Array = Uint8Array>(options: Version6Options | undefined, buf: TBuf, offset?: number): TBuf;
|
|
export default v6;
|