This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/ink/build/components/Transform.d.ts
T

16 lines
825 B
TypeScript

import React, { type ReactNode } from 'react';
export type Props = {
/**
* Function which transforms children output. It accepts children and must return transformed children too.
*/
readonly transform: (children: string, index: number) => string;
readonly children?: ReactNode;
};
/**
* Transform a string representation of React components before they are written to output.
* For example, you might want to apply a gradient to text, add a clickable link or create some text effects.
* These use cases can't accept React nodes as input, they are expecting a string.
* That's what <Transform> component does, it gives you an output string of its child components and lets you transform it in any way.
*/
export default function Transform({ children, transform }: Props): React.JSX.Element | null;