DefinitelyTyped/types/protocol-buffers-schema/index.d.ts
Claas Ahlrichs f5433b84c0
[protocol-buffers-schema] add "options" (#43063)
* add "options"

* bumped version number
2020-03-12 17:44:42 -07:00

18 lines
546 B
TypeScript

// Type definitions for protocol-buffers-schema 3.4
// Project: https://github.com/mafintosh/protocol-buffers-schema
// Definitions by: Claas Ahlrichs <https://github.com/claasahl>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.7
/// <reference types="node" />
import { Schema } from "./types";
declare namespace parse {
function parse(buffer: string | Buffer): Schema;
function stringify(schema: Schema): string;
}
declare function parse(buffer: string | Buffer): Schema;
export = parse;