mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-04-29 15:37:48 +00:00
19 lines
437 B
TypeScript
19 lines
437 B
TypeScript
/**
|
|
* Shared utilities and types for the XRPL Dev Portal
|
|
*
|
|
* This module provides common utility functions, types, and helpers
|
|
* used across components and patterns in the shared directory.
|
|
*/
|
|
|
|
// Helper functions
|
|
export {
|
|
isEmpty,
|
|
getTextFromChildren,
|
|
getCardKey,
|
|
isEnvironment,
|
|
} from "./helpers";
|
|
export type { Environment } from "./helpers";
|
|
|
|
// Shared types
|
|
export type { DesignConstrainedButtonProps } from "./types";
|