Files
Josh Goldberg e4e4b30a62 Fixed TypeScript errors
It all works now.
2015-06-29 17:28:01 -04:00

21 lines
523 B
TypeScript

/// <reference path="References/PixelRendr-0.2.0.ts" />
declare module ImageReadr {
export interface IWorkerHTMLElement extends HTMLElement {
workerCallback?: (...args: any[]) => void;
}
export interface IImageReadrSettings {
allowedFiles: { [i: string]: boolean; };
sectionSelector: string;
inputSelector: string;
outputSelector: string;
paletteDefault: string;
palettes: { [i: string]: number[][] };
}
export interface IImageReadr {
}
}