Skip to content
This repository has been archived by the owner on Jan 8, 2023. It is now read-only.

Commit

Permalink
style: run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewvasilchuk committed Nov 8, 2020
1 parent 0c78dab commit 1f0b18f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
.PHONY: build
build:
npm run build
npm run build

.PHONY: test
test:
npm run test
npm run test

lint:
npm run lint
npm run lint

fmt:
npm run fmt
npm run fmt
10 changes: 5 additions & 5 deletions src/composition-api-emit.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Events } from './private/events'
import type { GenericEmit } from './private/generic-emit'

export interface CompositionAPIEmit<T extends Events>
extends GenericEmit<T, void> {}
import type { Events } from './private/events'
import type { GenericEmit } from './private/generic-emit'

export interface CompositionAPIEmit<T extends Events>
extends GenericEmit<T, void> {}
10 changes: 5 additions & 5 deletions src/options-api-emit.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Events } from './private/events'
import type { GenericEmit } from './private/generic-emit'

export interface OptionsAPIEmit<T extends Events, V extends Vue>
extends GenericEmit<T, V> {}
import type { Events } from './private/events'
import type { GenericEmit } from './private/generic-emit'

export interface OptionsAPIEmit<T extends Events, V extends Vue>
extends GenericEmit<T, V> {}
2 changes: 1 addition & 1 deletion src/private/events.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export type Events = Record<string, any | any[]>
export type Events = Record<string, any | any[]>
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"compilerOptions": {
"pretty": true,
"strict": true,
"moduleResolution": "Node",
"moduleResolution": "Node"
}
}

0 comments on commit 1f0b18f

Please sign in to comment.