wp-png.d.ts 331 B

123456789
  1. // Copyright 2017-2020 @polkadot/apps authors & contributors
  2. // This software may be modified and distributed under the terms
  3. // of the Apache-2.0 license. See the LICENSE file for details.
  4. declare module '*.png' {
  5. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  6. const content: any;
  7. export default content;
  8. }