Files
xrpl-dev-portal/shared/utils/index.ts

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";