Skip to content

Commit 08f991c

Browse files
committedApr 23, 2023
Remove duplicate type
1 parent c93a298 commit 08f991c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
import type { Line, Options } from '../types/common'
1+
import type { Line, Lines, Options } from '../types/common'
22
import { formatTimeLabel, getNow, noop, parseExtendedLyric, tagRegMap, timeExp, timeFieldExp, timeoutTools } from './utils'
33

44
type TagMapKeys = keyof typeof tagRegMap
55
type NonNullableOptions = Required<Options>
66
interface Tags extends Record<Exclude<TagMapKeys, 'offset'>, string> {
77
offset: number
88
}
9-
export type Lines = Line[]
109

1110
const tags = {
1211
title: '',

0 commit comments

Comments
 (0)
Please sign in to comment.