first commit
This commit is contained in:
14
frontend/node_modules/rc-notification/lib/NotificationProvider.d.ts
generated
vendored
Normal file
14
frontend/node_modules/rc-notification/lib/NotificationProvider.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { FC } from 'react';
|
||||
import React from 'react';
|
||||
export interface NotificationContextProps {
|
||||
classNames?: {
|
||||
notice?: string;
|
||||
list?: string;
|
||||
};
|
||||
}
|
||||
export declare const NotificationContext: React.Context<NotificationContextProps>;
|
||||
export interface NotificationProviderProps extends NotificationContextProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
declare const NotificationProvider: FC<NotificationProviderProps>;
|
||||
export default NotificationProvider;
|
||||
Reference in New Issue
Block a user