Skip to content

Commit

Permalink
Missed a few s
Browse files Browse the repository at this point in the history
  • Loading branch information
jnatalzia committed Mar 23, 2020
1 parent 72527e4 commit 52c7e3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/js/templates/floating-close-button.ts
@@ -1,4 +1,4 @@
import { HTMLTemplateString } from 'types/generic.type';
import type { HTMLTemplateString } from 'types/generic.type';

export default (ariaLabel: string): HTMLTemplateString => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/js/templates/logo.ts
@@ -1,4 +1,4 @@
import { HTMLTemplateString } from '../types/generic.type';
import type { HTMLTemplateString } from '../types/generic.type';

export default (position: string, hide: boolean): HTMLTemplateString => {
const jwhide = hide ? ' jw-hide' : '';
Expand Down
2 changes: 1 addition & 1 deletion src/js/utils/clock.ts
@@ -1,5 +1,5 @@
import { now as getTime } from 'utils/date';
import { GenericObject } from '../types/generic.type';
import type { GenericObject } from '../types/generic.type';

const performance: Performance | GenericObject = window.performance || {
timing: {}
Expand Down

0 comments on commit 52c7e3c

Please sign in to comment.