13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* The type of the React {@code Component} props of {@link TranscribingLabel}.
|
|
*/
|
|
export type Props = {
|
|
|
|
/**
|
|
* Invoked to obtain translated strings.
|
|
*/
|
|
t: Function
|
|
};
|