@fluster.io/dev
Version:
12 lines (11 loc) • 308 B
TypeScript
import { ReactNode } from 'react';
interface AudioTimestampLinkProps {
id: string;
timestamp: string;
children: ReactNode;
}
export declare const AudioTimestampLink: {
({ id, timestamp: timestampString, children, }: AudioTimestampLinkProps): ReactNode;
displayName: string;
};
export {};