UNPKG

ts-gif

Version:

TypeScript implementation of a performant GIF encoder & decoder.

12 lines (9 loc) 326 B
import { Reader, readerLZWOutputIndexStream } from './reader'; import { Writer, writerOutputLZWCodeStream } from './writer'; declare interface Gif { Reader: typeof Reader Writer: typeof Writer } declare const gif: Gif; export { Reader, readerLZWOutputIndexStream, Writer, writerOutputLZWCodeStream } export default gif;