react-native-dynamic-shimmer
Version:
Shimmer component wrapper for React Native apps
17 lines (16 loc) • 538 B
TypeScript
import type { ViewStyle } from 'react-native';
/**
* An array of dummy data for use in a FlatList component.
* Each item contains an `id` and a `title`.
* @type {Array<{ id: string; title: string }>}
*/
export declare const staticFlatListData: {
id: string;
title: string;
}[];
/**
* An array of margin property keys that can be used in React Native styles.
* These properties define the margin spacing around a component.
* @type {Array<keyof ViewStyle>}
*/
export declare const marginProperties: Array<keyof ViewStyle>;