UNPKG

typescript-closure-tools

Version:

Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files

14 lines (11 loc) 499 B
/// <reference path="../../../globals.d.ts" /> /// <reference path="../graphics/path.d.ts" /> declare module goog.testing.graphics { /** * Test if the given path matches the expected array of commands and parameters. * @param {Array.<string|number>} expected The expected array of commands and * parameters. * @param {goog.graphics.Path} path The path to test against. */ function assertPathEquals(expected: string|number[], path: goog.graphics.Path): void; }