Skip to content

Commit

Permalink
fix: export package
Browse files Browse the repository at this point in the history
  • Loading branch information
tale committed Feb 20, 2022
1 parent 7682f04 commit 3ebe069
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/packages.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { BinaryControl, IBinaryControl } from '.'

interface IPackage extends IBinaryControl {
export interface IPackage extends IBinaryControl {
/**
* A string depicting the file location of the package.
*
Expand Down Expand Up @@ -82,7 +82,7 @@ interface IPackage extends IBinaryControl {
* To meet the needs of many people, `apt-parser` will handle documented keys both ways.
* It will populate the strictly typed fields and also leave the raw-string value and key.
*/
class Package extends BinaryControl implements IPackage {
export class Package extends BinaryControl implements IPackage {
// Begin Raw Implementation
filename: string
size: number
Expand Down

0 comments on commit 3ebe069

Please sign in to comment.