Skip to content

Commit

Permalink
fix: incorrect TypeScript definition for OptimizeResult
Browse files Browse the repository at this point in the history
  • Loading branch information
kryops authored and kekee000 committed Aug 30, 2023
1 parent d333655 commit 64cac7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,13 +309,13 @@ export namespace FontEditor {
* result
*
* - true optimize success
* - {repeatList} repeat glyf codepoints
* - {repeat} repeat glyf codepoints
*/
result: true | {
/**
* repeat glyf codepoints
*/
repeatList: number[];
repeat: number[];
};

};
Expand Down

0 comments on commit 64cac7f

Please # to comment.