Skip to content

Commit

Permalink
refactor!: remove deprecated types (#2656)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfred-Skyblue authored Mar 4, 2023
1 parent 8d0753f commit c2fee4e
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions packages/shared/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ export type RemovableRef<T> = Omit<Ref<T>, 'value'> & {
set value(value: T | null | undefined)
}

/**
* @deprecated Use `RemovableRef`
*/
export type RemoveableRef<T> = RemovableRef<T>

/**
* Maybe it's a ref, or a plain value
*
Expand Down Expand Up @@ -114,11 +109,6 @@ export interface Stoppable<StartFnArgs extends any[] = any[]> {
start: (...args: StartFnArgs) => void
}

/**
* @deprecated Use `Stoppable`
*/
export type Stopable = Stoppable

export interface ConfigurableFlush {
/**
* Timing for monitoring changes, refer to WatchOptions for more details
Expand Down

0 comments on commit c2fee4e

Please sign in to comment.