Skip to content

Commit

Permalink
refactor(typeSenseCollection): use type keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
sfxcode committed Nov 6, 2023
1 parent 837b4e8 commit 6a3dce6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/runtime/composables/typeSenseCollection.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {useTypesenseApi} from "./typesenseApi";
import {TypesenseCollectionInfo} from "../model/TypesenseCollectionInfo";
import {CollectionResponse} from "../api";
import type {TypesenseCollectionInfo} from "../model/TypesenseCollectionInfo";
import type {CollectionResponse} from "../api";

export const useTypesenseCollections = () => {
const {collectionsApi} = useTypesenseApi()
Expand Down
2 changes: 0 additions & 2 deletions src/runtime/model/TypesenseCollectionInfo.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import {Field} from "../api";

export interface TypesenseCollectionInfo {

readonly name: string;
Expand Down

0 comments on commit 6a3dce6

Please sign in to comment.