alouette
Version:
A modern, customizable design system built on top of NativeWind v5 with configurable defaults
11 lines (9 loc) • 306 B
text/typescript
export interface ExternalOpenLinkBehavior {
native: "linking" | "webBrowser";
web: "targetBlank" | "targetSelf";
}
/** In-app themed browser sheet on native, new tab on web. */
export const defaultExternalOpenLinkBehavior: ExternalOpenLinkBehavior = {
native: "webBrowser",
web: "targetBlank",
};