Skip to content

Commit

Permalink
fix(av-cliper): remove unnecessary import #343
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramalf committed Jan 22, 2025
1 parent aa6e3fe commit a6b088d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/av-cliper/src/clips/iclip.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export interface IClipMeta {
interface IClipMeta {
width: number;
height: number;
duration: number;
Expand Down
2 changes: 1 addition & 1 deletion packages/av-cliper/src/clips/media-stream-clip.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { autoReadStream } from '@webav/internal-utils';
import { IClip, IClipMeta } from './iclip';
import { IClip } from './iclip';

/**
* 包装实时音视频流,仅用于 [AVCanvas](../../av-canvas/classes/AVCanvas.html)
Expand Down

0 comments on commit a6b088d

Please sign in to comment.