-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
1,866 additions
and
639 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// The ResourceBlob is an opaque type that must | ||
// satisfy two constraints. | ||
// (1) it should be possible for the IdentifierCache | ||
// to be able to generate a RecordIdentifier for it | ||
// whether by default or due to configuration. | ||
// (2) it should be in a format expected by the Cache. | ||
// This format is Cache declared. | ||
// | ||
// this Opaqueness allows arbitrary storage of any | ||
// serializable / transferable state including such things | ||
// as Buffers and Strings. | ||
export type ResourceBlob = unknown; |
Oops, something went wrong.