This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
13 lines (13 sloc)
243 Bytes
| /** | |
| * Enumeration of the different ways in which the list can be rendered. | |
| * | |
| * @readonly | |
| * @enum {string} | |
| * @usage | |
| * | |
| * This enumeration is used to specify how a list should be rendered. | |
| */ | |
| export enum ListLayoutEnum { | |
| list, | |
| grid | |
| } |