12 lines
184 B
TypeScript
12 lines
184 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { __ } from '@wordpress/i18n';
|
||
|
|
||
|
export default {
|
||
|
heading: {
|
||
|
type: 'string',
|
||
|
default: __( 'Additional Information', 'woocommerce' ),
|
||
|
},
|
||
|
};
|