Skip to content

Commit

Permalink
Merge pull request #132 from Sozialarchiv/type-fix
Browse files Browse the repository at this point in the history
type issue fixed, closes #131
  • Loading branch information
neSpecc authored Oct 12, 2024
2 parents 747f9e7 + ffa3515 commit 801580f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@editorjs/embed",
"version": "2.7.5",
"version": "2.7.6",
"keywords": [
"codex editor",
"embed",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import SERVICES from './services';
import './index.css';
import { debounce } from 'debounce';
import { ServiceConfig, ServicesConfigType } from './types/types';
import { API , PatternPasteEventDetail } from '@editorjs/editorjs';
import type { ServiceConfig, ServicesConfigType } from './serviceConfig';
import type { API , PatternPasteEventDetail } from '@editorjs/editorjs';

/**
* @description Embed Tool data
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/services.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable no-useless-escape */
import { ServiceConfig, ServicesConfigType } from './types/types';
import type { ServicesConfigType } from './serviceConfig';

const SERVICES: ServicesConfigType = {
vimeo: {
Expand Down Expand Up @@ -185,4 +185,4 @@ const SERVICES: ServicesConfigType = {
},
};

export default SERVICES;
export default SERVICES;

0 comments on commit 801580f

Please sign in to comment.