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
export type AssetLinks = { | |
relation: string[]; | |
target: { | |
namespace: string; | |
package_name: string; | |
sha256_cert_fingerprints: string[]; | |
}; | |
}[]; |
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
type Component = { | |
/** The pattern to match with the URL path component. The default is `*`, which matches everything. */ | |
"/"?: string; | |
/** The pattern or dictionary to match with the URL query component. The default is `*`, which matches everything. */ | |
"?"?: string | Record<string, string>; | |
/** The pattern to match with the URL fragment component. The default is `*`, which matches everything. */ | |
"#"?: string; | |
/** A Boolean value that indicates whether to stop pattern matching and prevent the universal link from opening if the URL matches the associated pattern. The default is `false`. */ | |
exclude?: boolean; | |
/** Text that the system ignores. Use this to provide information about the URLs a pattern matches. */ |