mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-04 04:57:40 +08:00
15 lines
310 B
TypeScript
15 lines
310 B
TypeScript
declare module 'de-indent' {
|
|
export default function deindent (input: string): string
|
|
}
|
|
|
|
declare namespace jasmine {
|
|
interface Matchers<T> {
|
|
toHaveBeenWarned(): void;
|
|
toHaveBeenTipped(): void;
|
|
}
|
|
|
|
interface ArrayLikeMatchers<T> {
|
|
toHaveBeenWarned(): void;
|
|
toHaveBeenTipped(): void;
|
|
}
|
|
} |