2ec9c0e533
* build: ts-jest * build: yarn latest * build: no babel * chore: lint * refactor: test, types
13 lines
262 B
TypeScript
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
|
|
}
|