react-code-dataset / wp-calypso /client /state /selectors /get-billing-transactions.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { IAppState } from 'calypso/state/types';
import 'calypso/state/billing-transactions/init';
/**
* Returns all billing transactions.
* Returns null if the billing transactions have not been fetched yet.
*/
export default function getBillingTransactions( state: IAppState ) {
return state.billingTransactions?.items;
}