Bump artifact dependencies if CODEQL_ACTION_ARTIFACT_V2_UPGRADE enabled (#2482)
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
This commit is contained in:
parent
cf5b0a9041
commit
a196a714b8
5388 changed files with 2176737 additions and 71701 deletions
31
node_modules/@protobuf-ts/plugin/build/file-table.d.ts
generated
vendored
Normal file
31
node_modules/@protobuf-ts/plugin/build/file-table.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
import { FileDescriptorProto } from "@protobuf-ts/plugin-framework";
|
||||
export declare class FileTable {
|
||||
private readonly entries;
|
||||
private readonly clashResolveMaxTries;
|
||||
private readonly clashResolver;
|
||||
constructor(clashResolver?: ClashResolver);
|
||||
register(requestedName: string, descriptor: FileDescriptorProto, kind?: string): string;
|
||||
protected hasName: (name: string) => boolean;
|
||||
/**
|
||||
* Find a symbol (of the given kind) for the given descriptor.
|
||||
* Return `undefined` if not found.
|
||||
*/
|
||||
find(descriptor: FileDescriptorProto, kind?: string): FileTableEntry | undefined;
|
||||
/**
|
||||
* Find a symbol (of the given kind) for the given descriptor.
|
||||
* Raises error if not found.
|
||||
*/
|
||||
get(descriptor: FileDescriptorProto, kind?: string): FileTableEntry;
|
||||
/**
|
||||
* Is a name (of the given kind) registered for the the given descriptor?
|
||||
*/
|
||||
has(descriptor: FileDescriptorProto, kind?: string): boolean;
|
||||
static defaultClashResolver(descriptor: FileDescriptorProto, requestedName: string, kind: string, tryCount: number): string;
|
||||
}
|
||||
interface FileTableEntry {
|
||||
descriptor: FileDescriptorProto;
|
||||
name: string;
|
||||
kind: string;
|
||||
}
|
||||
declare type ClashResolver = (descriptor: FileDescriptorProto, requestedName: string, kind: string, tryCount: number, failedName: string) => string;
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue