Files
DefinitelyTyped/protobufjs/protobufjs-tests.ts
Panu Horsmalahti b344b6491c Fixed the test.
2015-01-03 16:55:53 +02:00

12 lines
245 B
TypeScript

/// <reference path="protobufjs.d.ts" />
import ProtoBuf = require("protobufjs");
ProtoBuf.loadProtoFile("test.proto", builder => {
builder.build();
var message: ProtoBuf.IProtoBufMessage;
message.toArrayBuffer();
message.toBuffer();
});