forked from projectmoon/tenebrous-dicebot
23 lines
1.4 KiB
TypeScript
23 lines
1.4 KiB
TypeScript
|
/// <reference types="node" />
|
||
|
import { FileDescriptorProto } from "google-protobuf/google/protobuf/descriptor_pb";
|
||
|
import { ExportEnumEntry, ExportMessageEntry } from "./ExportMap";
|
||
|
import { ServiceParameter, ModeParameter } from "./parameters";
|
||
|
export declare function filePathToPseudoNamespace(filePath: string): string;
|
||
|
export declare function stripPrefix(str: string, prefix: string): string;
|
||
|
export declare function snakeToCamel(str: string): string;
|
||
|
export declare function uppercaseFirst(str: string): string;
|
||
|
export declare function isProto2(fileDescriptor: FileDescriptorProto): boolean;
|
||
|
export declare function oneOfName(name: string): string;
|
||
|
export declare function generateIndent(indentLevel: number): string;
|
||
|
export declare function getPathToRoot(fileName: string): string;
|
||
|
export declare function withinNamespaceFromExportEntry(name: string, exportEntry: ExportMessageEntry | ExportEnumEntry): string;
|
||
|
export declare function replaceProtoSuffix(protoFilePath: string): string;
|
||
|
export declare function withAllStdIn(callback: (buffer: Buffer) => void): void;
|
||
|
export declare function normaliseFieldObjectName(name: string): string;
|
||
|
export declare function getServiceParameter(service?: string): ServiceParameter;
|
||
|
export declare function getModeParameter(mode?: string): ModeParameter;
|
||
|
export declare function getParameterEnums(parameter: string): {
|
||
|
service: ServiceParameter;
|
||
|
mode: ModeParameter;
|
||
|
};
|