This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
packwatch/src/types.ts
Marc Cataford 2ec9c0e533
build: transition to Typescript without Babel (#252)
* build: ts-jest

* build: yarn latest

* build: no babel

* chore: lint

* refactor: test, types
2021-06-05 11:29:15 -04:00

13 lines
262 B
TypeScript

export type PackwatchArguments = {
cwd: string
isUpdatingManifest: boolean
}
export type Report = {
packageSize: string
unpackedSize: string
packageSizeBytes: number
unpackedSizeBytes: number
limit?: string
limitBytes?: number
}