Last active
December 5, 2023 17:28
-
-
Save Peeeep/08a624770c130cd39d8ac6fa2cbd2c2a to your computer and use it in GitHub Desktop.
TypeScript types for .well-known/assetlinks.json (Android App Links)
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[]; | |
}; | |
}[]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment