Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x | /**
* @internal
*/
export const PastePropertyNames = {
/**
* Node attribute used to identify if the content is from Google Sheets.
*/
GOOGLE_SHEET_NODE_NAME: 'google-sheets-html-origin',
/**
* Name of the HTMLMeta Property that provides the Office App Source of the pasted content
*/
PROG_ID_NAME: 'ProgId',
/**
* Name of the HTMLMeta Property that identifies pated content as from Excel Desktop
*/
EXCEL_DESKTOP_ATTRIBUTE_NAME: 'xmlns:x',
};
|