Skip to content

Commit

Permalink
fix type def
Browse files Browse the repository at this point in the history
  • Loading branch information
SoYoung210 committed Jan 31, 2025
1 parent 10ce536 commit 7ac05b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/storykit/src/types/assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ export interface Trait {
export interface LicenseOffChainData {
aiLearningModels?: boolean
}
export type PILTermsWithOffChainData = PILTerms & LicenseOffChainData
export interface PILTermsWithOffChainData extends PILTerms {
offChainData: LicenseOffChainData | undefined
}
export type LicenseTerms = {
id: string
// json: string
Expand Down

0 comments on commit 7ac05b7

Please sign in to comment.