splitpanes icon indicating copy to clipboard operation
splitpanes copied to clipboard

splitpane typescript declaration

Open JenuelDev opened this issue 3 years ago • 1 comments

it seems their is not typescript support for this one.

JenuelDev avatar Sep 15 '21 15:09 JenuelDev

If you want a hacky solution to disable type errors you can create splitpanes.d.ts anywhere in your project with the following content:

declare module 'splitpanes' {
    let Splitpanes : any;
    let Pane : any;

    export { Splitpanes, Pane }
}

VIEWVIEWVIEW avatar Nov 05 '22 15:11 VIEWVIEWVIEW