shoelace/src/declaration.d.ts

17 wiersze
440 B
TypeScript

declare module '@popperjs/core/dist/esm' {
export * from '@popperjs/core/lib';
}
declare module '*.css' {
const styles: string;
export default styles;
}
declare namespace Chai {
interface Assertion {
// chai-a11y-axe returns a promise-like object and should be awaited but the types are incorrect
// eslint-disable-next-line @typescript-eslint/ban-types
accessible: (options?: Object) => PromiseLike<Assertion>;
}
}