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