splitpanes
splitpanes copied to clipboard
splitpane typescript declaration
it seems their is not typescript support for this one.
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 }
}