Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: dist/dart-style.d.ts

Issue 1640023002: Support deploying an npm package exporting a formatCode method. (Closed) Base URL: git@github.com:dart-lang/dart_style.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Type definitions for dart-style
2
3 declare module style {
4 interface FormatResult {
5 code?: string;
6 error?: string;
7 }
8
9 export function formatCode(code: string): FormatResult;
10 }
11
12 declare module "dart-style" {
13 export = style;
14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698