diff options
author | Cashew <52880648+Scrub1492@users.noreply.github.com> | 2024-02-10 12:32:55 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 05:32:55 +0000 |
commit | 6c8892e031b8ba9b62e2746f7807b5dafb2b984b (patch) | |
tree | 67754e47b8ebe0815a8fa425fe95d2e6c7c18c66 /types/ext | |
parent | 884f2a0b9d81ffb41e0df46d2b16c2e102f93435 (diff) |
Add eslint eol-last rule (#662)
* add eol-last eslint rule
* fix lint
* update css-json.test
Diffstat (limited to 'types/ext')
-rw-r--r-- | types/ext/display-content-manager.d.ts | 2 | ||||
-rw-r--r-- | types/ext/display.d.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/types/ext/display-content-manager.d.ts b/types/ext/display-content-manager.d.ts index c0cb183f..a216fce9 100644 --- a/types/ext/display-content-manager.d.ts +++ b/types/ext/display-content-manager.d.ts @@ -37,4 +37,4 @@ export type CachedMediaDataLoaded = { export type LoadMediaDataInfo = { onUnload: OnUnloadCallback; loaded: boolean; -};
\ No newline at end of file +}; diff --git a/types/ext/display.d.ts b/types/ext/display.d.ts index 351cf067..a2e61209 100644 --- a/types/ext/display.d.ts +++ b/types/ext/display.d.ts @@ -274,4 +274,4 @@ type WindowApiMessage<TName extends WindowApiNames> = { params: WindowApiParams<TName>; }; -export type WindowApiFrameClientMessageAny = {[name in WindowApiNames]: FrameClientMessage<WindowApiMessage<name>>}[WindowApiNames];
\ No newline at end of file +export type WindowApiFrameClientMessageAny = {[name in WindowApiNames]: FrameClientMessage<WindowApiMessage<name>>}[WindowApiNames]; |