-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extract layouting into standalone package and adjust for changes (#738)
- Loading branch information
1 parent
394b7fd
commit 0c57292
Showing
28 changed files
with
191 additions
and
2,130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
export { | ||
type Layout, | ||
type DeriveType as LayoutToType, | ||
type FixedConversion, | ||
type CustomConversion, | ||
type Endianness, | ||
type CustomizableBytes, | ||
type CustomizableBytesReturn, | ||
type Discriminator, | ||
type FixedItemsOf as FixedItemsOfLayout, | ||
type DynamicItemsOf as DynamicItemsOfLayout, | ||
type Bitset, | ||
type BitsetItem, | ||
serialize as serializeLayout, | ||
deserialize as deserializeLayout, | ||
buildDiscriminator as layoutDiscriminator, | ||
calcSize as calcLayoutSize, | ||
calcStaticSize as calcStaticLayoutSize, | ||
customizableBytes, | ||
addFixedValues, | ||
fixedItemsOf as fixedItemsOfLayout, | ||
dynamicItemsOf as dynamicItemsOfLayout, | ||
enumItem, | ||
optionItem, | ||
bitsetItem | ||
} from "binary-layout"; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.