mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2026-01-01 02:27:21 +01:00
8 lines
252 B
TypeScript
8 lines
252 B
TypeScript
import * as React from 'react';
|
|
import { ToastProps } from '../types';
|
|
declare type ToastPositionerProps = Pick<ToastProps, 'style' | 'in'> & {
|
|
className?: string;
|
|
};
|
|
export declare const ToastPositioner: React.FC<ToastPositionerProps>;
|
|
export {};
|