為jQuery Plugin撰寫TypeScript定義檔 - 黑暗執行緒
/** jquery.fill options */ interface JQFillOptions {/** fill color */ color?: string;} interface JQuery {/** * 將元素填滿背景色 * * @param options 顏色設定,未提供時依預設值 */ fill(options?: JQFillOptions): JQuery;} interface JQFillStatic {/** * 將document.body填滿背景色...