Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib-amd/extendComponent.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

8 lines
275 B
TypeScript

import * as React from 'react';
/**
* Extends a component's lifetime methods by appending new functions to the existing lifetime functions.
*/
export declare function extendComponent<T extends React.Component>(parent: T, methods: {
[key in keyof T]?: T[key];
}): void;