Skip to content

Commit

Permalink
fix: etherpad extra type (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Chau authored Mar 14, 2023
1 parent 0f1c3cc commit a4113e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/items/interfaces/item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
ShortcutItemExtra,
} from '../../../interfaces/extra';
import { AppItemExtra } from '../../app/';
import { Etherpad } from '../../etherpad';
import { EtherpadItemExtra } from '../../etherpad';
import { LocalFileItemExtra, S3FileItemExtra } from '../../file';
import { H5PItemExtra } from '../../h5p';

Expand Down Expand Up @@ -65,7 +65,7 @@ export type ShortcutItemType<S = ItemSettings> = {
} & ItemBase<S>;
export type EtherpadItemType<S = ItemSettings> = {
type: `${ItemType.ETHERPAD}`;
extra: Etherpad;
extra: EtherpadItemExtra;
} & ItemBase<S>;

export type Item<S = ItemSettings> =
Expand Down

0 comments on commit a4113e5

Please sign in to comment.